home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1997 May
/
PC Plus Super CD Issue 127 (May 1997).iso
/
install
/
disk15
/
dbtools.pak
/
DBFORM.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-08-24
|
378 b
|
28 lines
unit Dbform;
interface
uses Forms, Db;
type
TDbForm = class(TForm)
private
FDb: TDatabase;
public
property Database: TDatabase read FDb write FDb;
procedure CreateSQLForm;
end;
implementation
uses Dbsql;
{ Create a new SQL editor }
procedure TDbForm.CreateSQLForm;
begin
TSQLForm.Create (Application, Database)
end;
end.